-- card: 41729 from stack: in -- bmap block id: 0 -- flags: 0000 -- background id: 4755 -- name: -- part 1 (field) -- low flags: 00 -- high flags: 0007 -- rect: left=30 top=78 right=296 bottom=478 -- title width / last selected line: 0 -- icon id / first selected line: 0 / 0 -- text alignment: 0 -- font id: 4 -- text size: 9 -- style flags: 0 -- line height: 12 -- part name: -- part contents for card part 1 ----- text ----- ----------------------------- TC version -------------------------- /* * FILE: person.h * AUTHOR: R.G. * CREATED: June 25, 1990 * * header defines Person class */ # define _H_person # include "class.h" /****************************************************************** * Person class ******************************************************************/ struct Person:Generic_Class { char *name; int age; int init(void); void set(void); void print(void); int destroy(void); }; ---------------------------- C++ version -------------------------- /* * FILE: person.h * AUTHOR: R.G. * CREATED: June 25, 1990 * * header defines Person class */ # ifndef person_h # define person_h # include "class.h" /****************************************************************** * Person class ******************************************************************/ struct Person:Generic_Class { char *name; int age; int init(void); /* already virtual */ virtual void set(void); virtual void print(void); int destroy(void); /* already virtual */ }; # endif -- part contents for background part 7 ----- text ----- 133 -- part contents for background part 4 ----- text ----- File 3 of 7: